home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cookbook USA: Drips, Dressings & Sauces
/
Cookbook USA - Drips, Dressings & Sauces (1997)(MicroMedia).iso
/
ch15
/
frmstatu.frm
< prev
next >
Wrap
Text File
|
1996-07-05
|
1KB
|
49 lines
VERSION 2.00
Begin Form frmStatusBar
AutoRedraw = -1 'True
Caption = "Progress Indicator"
ClientHeight = 375
ClientLeft = 1905
ClientTop = 2910
ClientWidth = 4455
ClipControls = 0 'False
ControlBox = 0 'False
Height = 780
Icon = FRMSTATU.FRX:0000
Left = 1845
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 375
ScaleWidth = 4455
Top = 2565
Width = 4575
Begin NiftoMeter StatusBar
BackColor = &H00FFFFC0&
BevelInner = 1 'Inset
BevelOuter = 2 'Raised
BevelWidth = 1
BorderStyle = 0 'None
BorderWidth = 1
ForeColor = &H00FF8080&
Height = 375
Left = 120
Top = 0
Width = 4215
End
End
' frmStatus has no procedures or methods of it's own. It
' is simply a status gauge object on a form which can
' be shown by other forms to graphically demontrate
' progress.
Option Explicit
Sub Form_Load ()
' centering the form
Me.Left = (screen.Width - Me.Width) / 2
Me.Top = Abs((screen.Height - Me.Height) / 2)
End Sub